From 7479e6cb50655c6df52b566c4c6269c83c81254e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Thu, 4 Jan 2018 21:38:22 +0100 Subject: [PATCH] notebook: Fix wrong tab widgets allocation Since we allocate the tab widgets on demand, we have to queue an extra resize here. --- gtk/gtknotebook.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 2a2e8a837a..08b7b3764c 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -5425,6 +5425,7 @@ gtk_notebook_real_switch_page (GtkNotebook *notebook, update_arrow_state (notebook); gtk_widget_queue_resize (GTK_WIDGET (notebook)); + gtk_widget_queue_resize (priv->tabs_widget); g_object_notify_by_pspec (G_OBJECT (notebook), properties[PROP_PAGE]); } -- 2.30.2